home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CMNCTRL.PAK / MTREECTL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  67 lines

  1. // MyTreeCtrl.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14.  
  15. #ifndef INC_MYTREECTRL_H
  16. #define INC_MYTREECTRL_H
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMyTreeCtrl window
  19.  
  20. class CMyTreeCtrl : public CTreeCtrl
  21. {
  22. // Construction
  23. public:
  24.     CMyTreeCtrl();
  25.  
  26. // Attributes
  27. public:
  28.     BOOL        m_bDragging;
  29.     HTREEITEM    m_hitemDrag;
  30.     HTREEITEM    m_hitemDrop;
  31.     CImageList    *m_pimagelist;
  32. // Operations
  33. public:
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CMyTreeCtrl)
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. public:
  42.     virtual ~CMyTreeCtrl();
  43.     void    SetNewStyle(long lStyleMask, BOOL bSetBits);
  44.     BOOL    TransferItem(HTREEITEM hitem, HTREEITEM hNewParent);
  45.     void    OnButtonUp(void);
  46.     BOOL    IsChildNodeOf(HTREEITEM hitemChild, HTREEITEM hitemSuspectedParent);
  47.  
  48.     // Generated message map functions
  49. protected:
  50.     //{{AFX_MSG(CMyTreeCtrl)
  51.     afx_msg void OnEndLabelEdit(LPNMHDR pnmhdr, LRESULT *pLResult);
  52.     afx_msg void OnBeginDrag(LPNMHDR pnmhdr, LRESULT *pLResult);
  53.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  54.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  55.     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  56.     afx_msg void OnDestroy();
  57.     //}}AFX_MSG
  58.  
  59.     void OnButtonUp(CPoint point);
  60.  
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65.  
  66. #endif
  67.